

public interface Stack {

	void push( Object x );

	Object top();

	Object pop();

	boolean isEmpty();

	void clear();
}
